/* - - - T&C MODAL - Start - - - */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
  
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 60px;
    border: 1px solid #888;
    width: 70%;
}
  
.close {
    color: #aaaaaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: #da0000;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 850px) {
    .modal {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 25px;
        border: 1px solid #888;
        width: 92%;
    }
}
/* - - - T&C MODAL - Start - - - */



/* - - - FAQ ACCORDION - Start - - - */
.faq-box{
    padding: 2rem;
    background-color: rgba(247, 247, 247, 0.795);
    box-shadow: rgba(0, 0, 0, 0.267) 2.5px 4px 4px;
    border-radius: 2rem; 
    margin: 4rem auto 2rem auto;
    width: 100%;
    max-width: 800px;
}
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 1.5rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.5rem;
    transition: 0.4s;
    font-weight: bold;
    border-radius: 1rem 1rem 1rem 1rem;
    margin-top: 2rem; 
}

.accordion2 {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 1.8rem;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 1.6rem;
    transition: 0.4s;
    font-weight: bold;
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
    margin-top: 2rem; 
}
.active2 {
    background-color: #ccc;
    border-radius: 1rem 1rem 0 0;  
}
.accordion2:hover {
    background-color: #ccc;
}

.accordion2:after {
    content: '\27A4'; /* Unicode character for "plus" sign (+) */
    font-size: 1rem;
    color: #444;
    float: right;
    margin-left: 0.8rem;
}

.active2:after {
    content: "\9651";
    border-radius: 1rem 1rem 0 0; /* Unicode character for "minus" sign (-) */
}

.active {
    background-color: #ccc;
    border-radius: 1rem 1rem 0 0;  
}
.accordion:hover {
    background-color: #ccc;
}

.acc_div {
    border-radius: 1rem;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 1rem;
    color: #444;
    float: right;
    margin-left: 0.8rem;
}

.active:after {
    content: "\2796";
    border-radius: 1rem 1rem 0 0; /* Unicode character for "minus" sign (-) */
}

.panel_aco {
          padding: 0 30px;
          display: none;
          overflow: hidden;
          font-weight: normal;
          background-color: #ccc;
          border-radius: 0 0 1rem 1rem;
          transition: max-height 0.4s ease-out;
}

.section__heading {
    font-weight: bold;
    text-align: center;
}
/* - - - FAQ ACCORDION - End - - - */




/* - - - FBL BUTTONS - Start - - - */
.re-direct-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 650px;
    margin: 0 auto 50px auto;
}
  
.fbl-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 260px;
    background-color: #fff;
    color: #da0000;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 5rem;
    padding: 1rem 1.5rem 1rem 1.5rem;
    border: 2px solid #da0000;
    margin: auto;
}
  
.fbl-button:hover {
    transform: scale(1.04);
    transition-duration: 0.6s;
}

.fbl-button h4 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: normal;
}

.fbl-button:hover h4{
    font-weight: bold;
}

@media screen and (max-width: 650px) {

    .err-out-bx {
        flex-direction: column;
        justify-content: center;
        margin: 20px auto 30px auto;
    }

    .err-right {
        flex-direction: column;
    }

    .err-left h1 {
        font-size: 60px;
        text-align: center;
    }

    .err-left h2 {
        font-size: 25px;
        text-align: center;
    }
    
    .err-left p{
        font-size: 16px;
        text-align: center;
    }

    .re-direct-btn {
        flex-direction: column;
        justify-content: center;
    }

    .fbl-button {
        margin: 10px auto 10px auto;
    }
}
/* - - - FBL BUTTONS - End - - - */